{% extends "base.html" %} {% block title %}Suspended Doctors - Admin Panel{% endblock %} {% block content %}

Suspended Doctors

View doctors who have been permanently suspended after 3 failed appeals

Back to Dashboard
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %} {% if suspended_doctors %}
Suspended Doctors List
{% for doctor in suspended_doctors %} {% endfor %}
Doctor Specialization PMC Code Experience Appeal Count Final Rejection Reason Suspended Date Actions
{{ doctor.user.name[0].upper() }}
{{ doctor.user.name }}
{{ doctor.user.email }}
{{ doctor.specialization }} {{ doctor.pmc_code }} {{ doctor.experience }} years {{ doctor.appeal_count }} {{ doctor.rejection_reason or 'N/A' }} {% if doctor.rejection_date %} {{ doctor.rejection_date.strftime('%B %d, %Y at %I:%M:%S %p') }} {% else %} N/A {% endif %}
{% else %} {% endif %}
{% endblock %}